home *** CD-ROM | disk | FTP | other *** search
/ Paparazzi!: Tales of Tinseltown / Paparazzi - Tales of Tinseltown (1995)(Activision)(Disc 1 of 2).iso / pprazia2.dir / 00586_Script_586 < prev    next >
Text File  |  1995-05-21  |  707b  |  31 lines

  1. on exitFrame
  2.   global gintegrity, bribe, whoIsIt
  3.   
  4.   repeat with j = 12 to 14
  5.     puppetsprite j, true
  6.   end repeat
  7.   
  8.   if whoIsIt = "Phillip" then
  9.     set bribe = 2000
  10.     set the castNum of sprite 14 to cast "Give 2000"
  11.   else
  12.     if gIntegrity >= 30 then 
  13.       set bribe = 200
  14.       set the castNum of sprite 14 to cast "Give 200"
  15.       exit
  16.     end if
  17.     
  18.     if gIntegrity <= 29 & gIntegrity >= value(-30) then 
  19.       set bribe = 500
  20.       set the castNum of sprite 14 to cast "Give 500"
  21.       exit
  22.     end if
  23.     
  24.     if gIntegrity < value(-31)  then 
  25.       set bribe = 1000
  26.       set the castNum of sprite 14 to cast "Give 1000"
  27.       exit
  28.     end if
  29.   end if
  30.   
  31. end